home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-Sensation: Golden Games / Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso / Various / ShuffleRun / ShuffleRun.lha / InstallFont < prev    next >
Text File  |  1993-02-13  |  624b  |  25 lines

  1. .K ""
  2. echo "This script will install the 'am' font in your FONTS: directory."
  3. echo ""
  4.  
  5. ask "Do you wish to continue with the installation? [y/n]"
  6. if WARN
  7.   if not EXISTS fonts:am.font
  8.     echo "No existing am.font, installing am font..."
  9.     copy fonts fonts: all
  10.   else
  11.     echo "Found an existing am.font in your FONTS: directory."
  12.     ask "Do you wish to replace it with this version of the font? [y/n]"
  13.       if WARN
  14.         echo "Updating am font..."
  15.     copy fonts fonts: all
  16.       else
  17.         echo "Font unchanged."
  18.       endif
  19.     endif
  20.   endif
  21. endif
  22.  
  23. echo "All Done.  Click close gadget to get rid of window."
  24. endcli
  25.